home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / fgl110c.zip / 13-08.C < prev    next >
Text File  |  1992-01-31  |  386b  |  20 lines

  1. #include <fastgraf.h>
  2. #include <stdio.h>
  3.  
  4. void main(void);
  5.  
  6. void main()
  7. {
  8.    fg_musicb("T150 L8 EDCDEEE P DDD P EGG P EDCDEEE L16 P L8 EDDEDC$",1);
  9.    fg_waitkey();
  10.  
  11.    fg_suspend();
  12.    printf("Music suspended.  Press any key to resume.\n");
  13.    fg_waitkey();
  14.  
  15.    fg_resume();
  16.    printf("Music resumed.\n");
  17.    while (fg_playing());
  18.    printf("Music finished.\n");
  19. }
  20.